home *** CD-ROM | disk | FTP | other *** search
/ 3D Games - Real-time Rend…ng & Software Technology / 3D Games - Real-time Rendering & Software Technology.iso / flysdk / frontend / flyEditor / DlgEditValue.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.3 KB  |  51 lines

  1. #if !defined(AFX_DLGEDITVALUE_H__4D311241_C748_11D2_8077_C40F0427032D__INCLUDED_)
  2. #define AFX_DLGEDITVALUE_H__4D311241_C748_11D2_8077_C40F0427032D__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // DlgEditValue.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CDlgEditValue dialog
  12.  
  13. class CDlgEditValue : public CDialog
  14. {
  15. // Construction
  16. public:
  17.     char value[256];
  18.     param_desc * pd;
  19.     CDlgEditValue(CWnd* pParent = NULL);   // standard constructor
  20.  
  21. // Dialog Data
  22.     //{{AFX_DATA(CDlgEditValue)
  23.     enum { IDD = IDD_EDITVALUE };
  24.     CEdit    m_edit;
  25.     //}}AFX_DATA
  26.  
  27.  
  28. // Overrides
  29.     // ClassWizard generated virtual function overrides
  30.     //{{AFX_VIRTUAL(CDlgEditValue)
  31.     protected:
  32.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  33.     //}}AFX_VIRTUAL
  34.  
  35. // Implementation
  36. protected:
  37.  
  38.     // Generated message map functions
  39.     //{{AFX_MSG(CDlgEditValue)
  40.     afx_msg void OnKillfocusEdit1();
  41.     virtual BOOL OnInitDialog();
  42.     virtual void OnOK();
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49.  
  50. #endif // !defined(AFX_DLGEDITVALUE_H__4D311241_C748_11D2_8077_C40F0427032D__INCLUDED_)
  51.